home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer)…68k, x86, SPARC, PA-RISC] / NeXTSTEP 3.3 Dev Intel.iso / NextDeveloper / Headers / bsd / sys / ux_exception.h < prev    next >
C/C++ Source or Header  |  1995-02-14  |  1KB  |  53 lines

  1. /* 
  2.  * Mach Operating System
  3.  * Copyright (c) 1989 Carnegie-Mellon University
  4.  * Copyright (c) 1988 Carnegie-Mellon University
  5.  * Copyright (c) 1987 Carnegie-Mellon University
  6.  * All rights reserved.  The CMU software License Agreement specifies
  7.  * the terms and conditions for use and redistribution.
  8.  */
  9. /*
  10.  * HISTORY
  11.  * $Log:    ux_exception.h,v $
  12.  * Revision 2.7  89/10/03  19:23:14  rpd
  13.  *     Change from NeXT:  added EXC_UNIX_ABORT.
  14.  *     [89/08/20  23:16:13  rpd]
  15.  * 
  16.  * Revision 2.6  89/03/09  19:35:07  rpd
  17.  *     More cleanup.
  18.  * 
  19.  * Revision 2.5  89/02/25  15:01:07  gm0w
  20.  *     Changes for cleanup.
  21.  * 
  22.  * Revision 2.4  89/02/07  01:01:10  mwyoung
  23.  * Relocated from uxkern/ux_exception.h
  24.  * 
  25.  * Revision 2.3  89/01/15  16:35:44  rpd
  26.  *     Use decl_simple_lock_data.
  27.  *     [89/01/15  15:19:58  rpd]
  28.  * 
  29.  * Revision 2.2  88/08/24  02:52:12  mwyoung
  30.  *     Adjusted include file references.
  31.  *     [88/08/17  02:27:27  mwyoung]
  32.  *
  33.  * 29-Sep-87  David Black (dlb) at Carnegie-Mellon University
  34.  *    Created.
  35.  *
  36.  */
  37.  
  38. /*
  39.  *    Codes for Unix software exceptions under EXC_SOFTWARE.
  40.  */
  41.  
  42. #ifndef    _SYS_UX_EXCEPTION_H_
  43. #define _SYS_UX_EXCEPTION_H_
  44.  
  45. #define EXC_UNIX_BAD_SYSCALL    0x10000        /* SIGSYS */
  46.  
  47. #define EXC_UNIX_BAD_PIPE    0x10001        /* SIGPIPE */
  48.  
  49. #define EXC_UNIX_ABORT        0x10002        /* SIGABRT */
  50.  
  51.  
  52. #endif    _SYS_UX_EXCEPTION_H_
  53.